compress/gzip.Reader.digest (field)
14 uses
	compress/gzip (current package)
		gunzip.go#L78: 	digest       uint32 // CRC-32, IEEE polynomial (section 8)
		gunzip.go#L157: 			z.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:i+1])
		gunzip.go#L196: 	z.digest = crc32.ChecksumIEEE(z.buf[:10])
		gunzip.go#L202: 		z.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:2])
		gunzip.go#L207: 		z.digest = crc32.Update(z.digest, crc32.IEEETable, data)
		gunzip.go#L231: 		if digest != uint16(z.digest) {
		gunzip.go#L236: 	z.digest = 0
		gunzip.go#L253: 		z.digest = crc32.Update(z.digest, crc32.IEEETable, p[:n])
		gunzip.go#L267: 		if digest != z.digest || size != z.size {
		gunzip.go#L271: 		z.digest, z.size = 0, 0
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |